home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / complib / user_int_one.c < prev   
Encoding:
C/C++ Source or Header  |  1989-11-18  |  265 b   |  14 lines

  1. /*
  2. ### integrator one-stepper reserved for user customization ###
  3. */
  4.  
  5. user_int_one(vx1,vx,ptime,time_step,dim)
  6. double vx1[],vx[],*ptime,time_step;
  7. int dim;
  8. {
  9.     extern int stop;
  10.  
  11.     system_mess_proc(1,"User integration algorithm not defined!");
  12.     *ptime += time_step;
  13. }
  14.